header {
  background-color: #417505;
}

.header-content {
  display: grid;
  grid-template-columns: 50% 50%;
}

.header-content.frontpage {
  background-image: url('/assets/photos/auringonkukkapelto.jpg');
  background-position: center;
  background-size: cover;
  max-width: none;
  height: 300px;
  padding: 2rem 0;
}

.header-logo-container {
  align-self: center;
  justify-self: center;
  padding: 1rem;
}

.header-navi-container {
  align-self: center;
  justify-self: right;
}

@media screen and (min-width: 54rem) {
  .header-navi-container {
    justify-self: center;
  }
}

.logo {
  min-width: 7rem;
  max-height: 10rem;
  max-width: 100%;
}

@media screen and (min-width: 40rem) {
  .header-content {
    grid-template-columns: 20rem 1fr;
  }
}
